home *** CD-ROM | disk | FTP | other *** search
/ 3D Games - Real-time Rend…ng & Software Technology / 3D Games - Real-time Rendering & Software Technology.iso / flysdk / frontend / flyEditor / MainFrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-03-30  |  1.8 KB  |  68 lines

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_MAINFRM_H__5A2CCB27_B946_11D2_8077_D12CBD47771D__INCLUDED_)
  6. #define AFX_MAINFRM_H__5A2CCB27_B946_11D2_8077_D12CBD47771D__INCLUDED_
  7.  
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11.  
  12. class CFlyEditorView;
  13.  
  14. class CMainFrame : public CFrameWnd
  15. {
  16.     
  17. protected: // create from serialization only
  18.     CMainFrame();
  19.     DECLARE_DYNCREATE(CMainFrame)
  20.  
  21. public:
  22.     CSplitterWnd    m_wndSplitter;
  23.     CStatusBar        m_wndStatusBar;
  24.     CToolBar        m_wndToolBar;
  25.     CReBar            m_wndReBar;
  26.     CDialogBar        m_wndDlgBar;
  27.  
  28. public:
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CMainFrame)
  33.     public:
  34.     virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  35.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. public:
  40.     virtual ~CMainFrame();
  41.     CFlyEditorView* GetRightPane();
  42. #ifdef _DEBUG
  43.     virtual void AssertValid() const;
  44.     virtual void Dump(CDumpContext& dc) const;
  45. #endif
  46.  
  47.  
  48. // Generated message map functions
  49. protected:
  50.     //{{AFX_MSG(CMainFrame)
  51.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  52.     afx_msg void OnToolsUnpakfpk();
  53.     afx_msg void OnToolsPakfpk();
  54.     afx_msg void OnToolsLight();
  55.     afx_msg void OnToolsViewpvs();
  56.     //}}AFX_MSG
  57.     afx_msg void OnUpdateViewStyles(CCmdUI* pCmdUI);
  58.     afx_msg void OnViewStyle(UINT nCommandID);
  59.     DECLARE_MESSAGE_MAP()
  60. };
  61.  
  62. /////////////////////////////////////////////////////////////////////////////
  63.  
  64. //{{AFX_INSERT_LOCATION}}
  65. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  66.  
  67. #endif // !defined(AFX_MAINFRM_H__5A2CCB27_B946_11D2_8077_D12CBD47771D__INCLUDED_)
  68.